home *** CD-ROM | disk | FTP | other *** search
- // grphscrn.h: A set of utilities used in the graphics
- // applications in Chapters 13 and 14
-
- #ifndef H_GRPHSCRN
- #define H_GRPHSCRN
-
- #include "gwsounit.h"
-
- enum MouseOpt { NoMouse, MouseRequired, MouseOptional };
-
- extern Wso *FullScrn;
- extern MsgPkt StartMsg;
-
- void Setup(int MouseOpt, int &GDriver, int &GMode,
- char *DriverPath, unsigned Font);
- void MainEventLoop(void);
- void CleanUp(void);
-
- #endif
-